home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
POSIX
/
ThinkCPosix
/
pwd.h
< prev
next >
Wrap
Text File
|
1992-09-11
|
173b
|
15 lines
/* $Id: $ */
#pragma once
#include "sys/types.h"
struct passwd {
char *pw_name;
uid_t pw_uid;
gid_t pw_gid;
char *pw_dir;
char *pw_shell;
char *pw_passwd;
};